home *** CD-ROM | disk | FTP | other *** search
/ Buffalo Sabres 2001-2002 Promotional CD / Sabres.iso / pc / intro.dxr / 00005_the GO script.ls < prev    next >
Encoding:
Text File  |  2001-09-05  |  591 b   |  30 lines

  1. property pSp, pMarker, pMovie
  2.  
  3. on getPropertyDescriptionList
  4.   d = [:]
  5.   addProp(d, #pMarker, [#default: "name", #format: #string, #comment: "Enter the marker name"])
  6.   addProp(d, #pMovie, [#default: "name", #format: #string, #comment: "enter the movie name"])
  7.   return d
  8. end
  9.  
  10. on beginSprite me
  11.   pSp = me.spriteNum
  12. end
  13.  
  14. on mouseUp me
  15.   if pMovie = EMPTY then
  16.     go(pMarker)
  17.   else
  18.     if pMarker = EMPTY then
  19.       go(1, pMovie)
  20.     else
  21.       go(pMarker, pMovie)
  22.     end if
  23.   end if
  24. end
  25.  
  26. on getBehaviorDescription
  27.   description = "where do you want to go today?"
  28.   return description
  29. end
  30.